home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2008 February / PCWFEB08.iso / Software / Freeware / Miro 1.0 / Miro_Installer.exe / xulrunner / python / test / __init__.py next >
Encoding:
Python Source  |  2007-11-12  |  1.5 KB  |  42 lines

  1. # Miro - an RSS based video player application
  2. # Copyright (C) 2005-2007 Participatory Culture Foundation
  3. #
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2 of the License, or
  7. # (at your option) any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software
  16. # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  17.  
  18.  
  19. # Includes all PyUnit unit tests
  20.  
  21. import unittest
  22.  
  23. from test.databasetest import *
  24. from test.templatetest import *
  25. from test.fasttypestest import *
  26. from test.schematest import *
  27. from test.storedatabasetest import *
  28. from test.olddatabaseupgradetest import *
  29. from test.databasesanitytest import *
  30. from test.subscriptiontest import *
  31. from test.schedulertest import *
  32. from test.httpclienttest import *
  33. from test.httpdownloadertest import *
  34. from test.feedtest import *
  35. from test.feedparsertest import *
  36. from test.parseurltest import *
  37. from test.utiltest import *
  38. from test.playlisttest import *
  39. from test.unicodetest import *
  40. from test.databaseupgradetest import *
  41. import test.bmachinetest
  42.